From: Ralf Baechle Date: Tue, 21 May 2013 11:02:12 +0000 (+0200) Subject: MIPS: Idle: Make call of function pointer readable. X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~8751^2~7 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c9b6869dbb3c6edb24e3cc76d3655067cfa7b802;p=linux-4.9.git MIPS: Idle: Make call of function pointer readable. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/idle.c b/arch/mips/kernel/idle.c index b33875bf699d..36e79f528e89 100644 --- a/arch/mips/kernel/idle.c +++ b/arch/mips/kernel/idle.c @@ -234,7 +234,7 @@ void arch_cpu_idle(void) { smtc_idle_hook(); if (cpu_wait) - (*cpu_wait)(); + cpu_wait(); else local_irq_enable(); }